home *** CD-ROM | disk | FTP | other *** search
/ PC Media 4 / PC MEDIA CD04.iso / share / udos / tbox11 / samples.exe / ZRUN.BAT < prev   
Encoding:
DOS Batch File  |  1992-04-14  |  294 b   |  17 lines

  1. @echo off
  2. if not #%1==# goto DOIT
  3. echo #  
  4. echo #  USAGE:  wun [d:]path\zipname
  5. echo #  
  6. goto LEAVE
  7. :DOIT
  8. c:
  9. cd \empty
  10. if exist %1.zip goto UNZIP
  11. echo File %1.ZIP not found  (from C:\EMPTY)
  12. goto LEAVE
  13. :UNZIP
  14. echo Y | del c:\empty\*.*
  15. PKUNZIP  %1
  16. if exist START.BAT start
  17. :LEAVE